/* ================= NAVBAR ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
}

.container{

    width:92%;
    max-width:1300px;

    margin:auto;

}

/* Navbar */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:80px;

    background:#ffffff;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

    z-index:9999;

}

.nav-container{

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* Logo */

.logo img{

    height:55px;

    width:auto;

}

/* Navigation */

.nav-links{

    display:flex;

    list-style:none;

    gap:35px;

    align-items:center;

}

.nav-links li{

    list-style:none;

}

.nav-links a{

    text-decoration:none;

    color:#1e293b;

    font-size:16px;

    font-weight:600;

    position:relative;

    transition:.3s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#00bfff;

    transition:.3s;

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}

.nav-links a:hover,
.nav-links a.active{

    color:#00bfff;

}

/* Button */

.quote-btn{

    padding:14px 32px;

    border-radius:50px;

    text-decoration:none;

    color:#ffffff;

    font-weight:600;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transition:.35s;

}

.quote-btn:hover{

    transform:translateY(-3px);

}

/* Mobile Icon */

.menu-toggle{

    display:none;

    background:none;

    border:none;

    font-size:26px;

    cursor:pointer;

    color:#1e293b;

}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .menu-toggle{

        display:block;

    }

    .quote-btn{

        display:none;

    }

    .nav-links{

        position:absolute;

        top:80px;

        left:0;

        width:100%;

        background:#ffffff;

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:25px;

        padding:30px 0;

        box-shadow:0 10px 25px rgba(0,0,0,.12);

        transform:translateY(-120%);

        opacity:0;

        visibility:hidden;

        transition:.35s;

    }

    .nav-links.active{

        transform:translateY(0);

        opacity:1;

        visibility:visible;

    }

}

/* =========================================================
                    CAREER HERO
========================================================= */

.career-hero{

    padding:130px 0 90px;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f6f5ff
    );

}

.career-content{

    text-align:center;

    max-width:900px;

    margin:auto;

}

.career-content h1{

    font-size:clamp(3rem,6vw,4.8rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:20px;

}

.career-content h1 span{

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.career-content p{

    max-width:700px;

    margin:auto;

    color:#64748b;

    font-size:18px;

    line-height:1.8;

    margin-bottom:40px;

}

/* =========================================================
                    BUTTONS
========================================================= */

.career-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary,

.btn-secondary{

    text-decoration:none;

    padding:15px 38px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    transition:.35s ease;

}

.btn-primary{

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    box-shadow:0 10px 25px rgba(0,198,255,.25);

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,198,255,.30);

}

.btn-secondary{

    color:#0f172a;

    background:#ffffff;

    border:1px solid #dbe5f1;

}

.btn-secondary:hover{

    background:#f8fbff;

    transform:translateY(-5px);

}

/* =========================================================
                    WHY JOIN
========================================================= */

.why-join-section{

    padding:110px 0;

    background:#f8fbff;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:clamp(2.5rem,5vw,4rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:15px;

}

.section-title h2 span{

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.section-title p{

    font-size:18px;

    color:#64748b;

}

/* =========================================================
                    BENEFITS GRID
========================================================= */

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

/* =========================================================
                    BENEFIT CARD
========================================================= */

.benefit-card{

    background:#ffffff;

    border:1px solid #e8eef5;

    border-radius:20px;

    padding:32px;

    transition:.35s ease;

    box-shadow:0 10px 30px rgba(15,23,42,.06);

}

.benefit-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.benefit-icon{

    width:56px;

    height:56px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:16px;

    margin-bottom:22px;

    color:#ffffff;

    font-size:22px;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

}

.benefit-card h3{

    font-size:22px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:15px;

}

.benefit-card p{

    color:#64748b;

    font-size:16px;

    line-height:1.7;

}

/* =========================================================
                    SCROLL ANIMATION
========================================================= */

.hidden{

    opacity:0;

    transform:translateY(60px);

}

.show{

    opacity:1;

    transform:translateY(0);

    transition:.8s ease;

}

/* =========================================================
                    RESPONSIVE
========================================================= */

@media(max-width:992px){

    .benefits-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .career-hero{

        padding:100px 0 70px;

    }

    .career-buttons{

        flex-direction:column;

        align-items:center;

    }

    .btn-primary,

    .btn-secondary{

        width:250px;

        text-align:center;

    }

    .benefits-grid{

        grid-template-columns:1fr;

    }

    .benefit-card{

        padding:28px;

    }

}

/* =========================================================
                    OUR CULTURE
========================================================= */

.culture-section{

    padding:120px 0;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f6f5ff
    );

}

.culture-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

/* =========================================================
                    LEFT CONTENT
========================================================= */

.culture-content{

    width:100%;

}

.culture-content .section-title{

    text-align:left;

    margin-bottom:45px;

}

.culture-content .section-title h2{

    font-size:clamp(2.5rem,5vw,4rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:20px;

}

.culture-content .section-title h2 span{

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.culture-content .section-title p{

    color:#64748b;

    font-size:17px;

    line-height:1.9;

    margin-bottom:18px;

}

/* =========================================================
                    STATS
========================================================= */

.culture-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.stat-card{

    background:#ffffff;

    border:1px solid #e5edf5;

    border-radius:18px;

    padding:24px;

    transition:.35s ease;

    box-shadow:0 10px 30px rgba(15,23,42,.06);

}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.stat-card h3{

    font-size:32px;

    font-weight:800;

    margin-bottom:8px;

    color:#00bfff;

}

.stat-card p{

    color:#64748b;

    font-size:15px;

    line-height:1.6;

}

/* =========================================================
                    IMAGE
========================================================= */

.culture-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.image-box{

    width:100%;

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.image-box img{

    width:100%;

    height:480px;

    object-fit:cover;

    display:block;

    transition:.5s ease;

}

.image-box:hover img{

    transform:scale(1.08);

}

/* =========================================================
                    SCROLL ANIMATION
========================================================= */

.hidden{

    opacity:0;

    transform:translateY(60px);

}

.show{

    opacity:1;

    transform:translateY(0);

    transition:.8s ease;

}

/* =========================================================
                    RESPONSIVE
========================================================= */

@media(max-width:992px){

    .culture-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

    .culture-image{

        order:-1;

    }

}

@media(max-width:768px){

    .culture-section{

        padding:90px 0;

    }

    .culture-content .section-title{

        text-align:center;

    }

    .culture-stats{

        grid-template-columns:1fr;

    }

    .stat-card{

        text-align:center;

    }

    .image-box img{

        height:350px;

    }

}

/* =========================================================
                    OPEN POSITIONS
========================================================= */

.open-positions-section{

    padding:120px 0;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f6f5ff
    );

}

/* =========================================================
                    JOB CARD
========================================================= */

.job-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    background:#ffffff;

    border:1px solid #e5edf5;

    border-radius:20px;

    padding:30px 35px;

    margin-bottom:25px;

    box-shadow:0 10px 30px rgba(15,23,42,.06);

    transition:.35s ease;

}

.job-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/* =========================================================
                    JOB INFO
========================================================= */

.job-info{

    flex:1;

}

.job-info h3{

    font-size:30px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:10px;

}

.job-info p{

    font-size:17px;

    color:#64748b;

    line-height:1.7;

    margin-bottom:18px;

}

/* =========================================================
                    TAGS
========================================================= */

.job-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.job-tags span{

    display:flex;

    align-items:center;

    gap:7px;

    padding:8px 15px;

    border-radius:30px;

    background:#f5fbff;

    border:1px solid #dcecf8;

    color:#64748b;

    font-size:14px;

    font-weight:500;

}

.job-tags span i{

    color:#00bfff;

}

.experience{

    background:linear-gradient(
        135deg,
        rgba(0,198,255,.12),
        rgba(106,17,203,.12)
    ) !important;

    color:#0f172a !important;

    border-color:#8dd9ff !important;

    font-weight:600 !important;

}

/* =========================================================
                    APPLY BUTTON
========================================================= */

.apply-btn{

    min-width:170px;

    text-align:center;

    text-decoration:none;

    padding:16px 28px;

    border-radius:50px;

    color:#ffffff;

    font-size:16px;

    font-weight:600;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transition:.35s ease;

    box-shadow:0 10px 25px rgba(0,198,255,.25);

}

.apply-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,198,255,.35);

}

/* =========================================================
                    NO OPENINGS
========================================================= */

.no-opening-section{

    padding:130px 0;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f6f5ff
    );

}

.no-opening-card{

    max-width:760px;

    margin:auto;

    text-align:center;

    background:#ffffff;

    border-radius:24px;

    padding:70px 50px;

    border:1px solid #e5edf5;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

}

.no-opening-card i{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:40px;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

}

.no-opening-card h2{

    font-size:42px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:20px;

}

.no-opening-card p{

    max-width:600px;

    margin:auto;

    color:#64748b;

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

}

.career-btn{

    display:inline-block;

    text-decoration:none;

    padding:16px 38px;

    border-radius:50px;

    color:#ffffff;

    font-size:16px;

    font-weight:600;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transition:.35s ease;

}

.career-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,198,255,.30);

}

/* =========================================================
                    ANIMATION
========================================================= */

.hidden{

    opacity:0;

    transform:translateY(60px);

}

.show{

    opacity:1;

    transform:translateY(0);

    transition:.8s ease;

}

/* =========================================================
                    RESPONSIVE
========================================================= */

@media(max-width:992px){

    .job-card{

        flex-direction:column;

        align-items:flex-start;

    }

    .apply-btn{

        width:100%;

    }

}

@media(max-width:768px){

    .open-positions-section{

        padding:90px 0;

    }

    .job-card{

        padding:25px;

    }

    .job-info h3{

        font-size:24px;

    }

    .job-info p{

        font-size:15px;

    }

    .job-tags{

        gap:10px;

    }

    .job-tags span{

        font-size:13px;

    }

    .no-opening-card{

        padding:50px 25px;

    }

    .no-opening-card h2{

        font-size:32px;

    }

    .no-opening-card p{

        font-size:16px;

    }

}

/* =========================================================
                    SUBMIT RESUME
========================================================= */

.resume-section{

    padding:120px 0;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f6f5ff
    );

}

.resume-card{

    max-width:900px;

    margin:auto;

    padding:60px;

    border-radius:28px;

    background:linear-gradient(
        135deg,
        rgba(0,198,255,.08),
        rgba(106,17,203,.08)
    );

    border:1px solid #e5edf5;

    box-shadow:0 18px 45px rgba(15,23,42,.08);

}

/* =========================================================
                    HEADER
========================================================= */

.resume-header{

    text-align:center;

    margin-bottom:40px;

}

.resume-header h2{

    font-size:clamp(2.5rem,5vw,3.8rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:15px;

}

.resume-header h2 span{

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.resume-header p{

    color:#64748b;

    font-size:18px;

    line-height:1.7;

}

/* =========================================================
                    FORM
========================================================= */

.resume-card form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.form-group{

    width:100%;

}

/* =========================================================
                    INPUTS
========================================================= */

.form-group input,

.form-group textarea{

    width:100%;

    border:none;

    outline:none;

    background:#ffffff;

    border:1px solid #e4ebf4;

    border-radius:16px;

    padding:18px 22px;

    font-size:16px;

    font-family:'Inter',sans-serif;

    color:#0f172a;

    transition:.35s ease;

}

.form-group textarea{

    resize:none;

    min-height:150px;

}

.form-group input::placeholder,

.form-group textarea::placeholder{

    color:#94a3b8;

}

.form-group input:focus,

.form-group textarea:focus{

    border-color:#00c6ff;

    box-shadow:0 0 0 4px rgba(0,198,255,.12);

}

/* =========================================================
                    FILE UPLOAD
========================================================= */

.resume-upload{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    width:100%;

    padding:22px;

    background:#ffffff;

    border:2px dashed #d8e7f5;

    border-radius:18px;

    cursor:pointer;

    transition:.35s ease;

    color:#64748b;

    font-size:16px;

    font-weight:500;

}

.resume-upload:hover{

    border-color:#00c6ff;

    background:#f8fdff;

}

.resume-upload input{

    display:none;

}

.resume-upload i{

    color:#00bfff;

    font-size:20px;

}

/* =========================================================
                    BUTTON
========================================================= */

.resume-btn{

    width:100%;

    border:none;

    cursor:pointer;

    padding:18px;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transition:.35s ease;

    box-shadow:0 12px 30px rgba(0,198,255,.25);

}

.resume-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,198,255,.35);

}

/* =========================================================
                    ANIMATION
========================================================= */

.hidden{

    opacity:0;

    transform:translateY(60px);

}

.show{

    opacity:1;

    transform:translateY(0);

    transition:.8s ease;

}

/* =========================================================
                    RESPONSIVE
========================================================= */

@media(max-width:992px){

    .resume-card{

        padding:45px;

    }

}

@media(max-width:768px){

    .resume-section{

        padding:90px 0;

    }

    .resume-card{

        padding:30px 22px;

    }

    .resume-header h2{

        font-size:40px;

    }

    .resume-header p{

        font-size:16px;

    }

    .form-group input,

    .form-group textarea{

        padding:16px 18px;

        font-size:15px;

    }

    .resume-upload{

        padding:18px;

        font-size:15px;

    }

}


/* ================= CTA SECTION ================= */

.cta-section{

    padding:100px 0;

    background:linear-gradient(
        135deg,
        #edf9ff 0%,
        #f5f1ff 100%
    );

}

.cta-content{

    max-width:900px;

    margin:0 auto;

    text-align:center;

}

.cta-content h2{

    font-size:clamp(3rem,5vw,4.5rem);

    font-weight:800;

    line-height:1.15;

    color:#0f172a;

    max-width:900px;

    margin:0 auto 25px;

}

.cta-content p{

    max-width:720px;

    margin:0 auto 50px;

    font-size:22px;

    line-height:1.7;

    color:#64748b;

}

/* Buttons */

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:22px;

    flex-wrap:wrap;

}

.cta-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    min-width:270px;

    padding:18px 36px;

    text-decoration:none;

    border-radius:55px;

    font-size:18px;

    font-weight:700;

    transition:.35s;

}

/* Primary */

.primary-btn{

    color:#fff;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    box-shadow:
    0 15px 35px rgba(80,80,255,.25);

}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 25px 45px rgba(80,80,255,.35);

}

.primary-btn i{

    transition:.3s;

}

.primary-btn:hover i{

    transform:translateX(6px);

}

/* Secondary */

.secondary-btn{

    background:#ffffff;

    color:#0f172a;

    border:1px solid #d9e3ef;

    box-shadow:
    0 8px 20px rgba(0,0,0,.05);

}

.secondary-btn:hover{

    background:#0f172a;

    color:#ffffff;

    border-color:#0f172a;

    transform:translateY(-5px);

}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

    .cta-section{

        padding:80px 0;

    }

    .cta-content p{

        font-size:18px;

    }

    .cta-buttons{

        flex-direction:column;

        gap:18px;

    }

    .cta-btn{

        width:100%;

        max-width:330px;

    }

}

/* ================= FOOTER ================= */

.footer{

    background:#1e293b;

    color:#cbd5e1;

    padding:90px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr repeat(3,1fr);

    gap:50px;

}

.footer-column h3{

    font-size:28px;

    color:#ffffff;

    margin-bottom:28px;

    font-weight:700;

}

/* Logo */

.footer-logo{

    display:inline-block;

    margin-bottom:25px;

}

.footer-logo img{

    width:100%;

    max-width:190px;

    height:auto;

}

/* About */

.footer-about p{

    line-height:1.9;

    margin-bottom:35px;

    color:#94a3b8;

    font-size:17px;

}

/* Contact */

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.contact-item i{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    color:#ffffff;

    flex-shrink:0;

}

.contact-item a,
.contact-item span{

    color:#cbd5e1;

    text-decoration:none;

    line-height:1.8;

    transition:.3s;

}

.contact-item a:hover{

    color:#00d4ff;

}

/* Links */

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:18px;

}

.footer-column ul li a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

    position:relative;

}

.footer-column ul li a:hover{

    color:#00d4ff;

    padding-left:8px;

}

/* Social */

.footer-social{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:35px;

}

.footer-social a{

    width:50px;

    height:50px;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transition:.35s;

}

.footer-social a:hover{

    transform:translateY(-6px);

    box-shadow:0 12px 30px rgba(0,198,255,.35);

}

/* Bottom */

.footer-bottom{

    margin-top:70px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.12);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#94a3b8;

}

.footer-bottom-links{

    display:flex;

    gap:25px;

}

.footer-bottom-links a{

    color:#94a3b8;

    text-decoration:none;

    transition:.3s;

}

.footer-bottom-links a:hover{

    color:#00d4ff;

}

/* Responsive */

@media(max-width:1100px){

    .footer-grid{

        grid-template-columns:1fr 1fr;

        gap:50px;

    }

}

@media(max-width:768px){

    .footer{

        padding:70px 0 25px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:45px;

    }

    .footer-column h3{

        font-size:24px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .footer-bottom-links{

        flex-wrap:wrap;

        justify-content:center;

    }

}

@media(max-width:768px){

    .cta-buttons{

        flex-direction:column;

        align-items:center;

    }

    .cta-btn{

        width:100%;

        max-width:350px;

    }

    .contact-box p{

        font-size:24px;

    }

}